One To Many Key Value Repo
interface OneToManyKeyValueRepo<Key, Value> : ReadOneToManyKeyValueRepo<Key, Value> , WriteOneToManyKeyValueRepo<Key, Value>
Content copied to clipboard
Functions
clear With Value
Link copied to clipboard
get
Link copied to clipboard
abstract suspend fun get(k: Key, pagination: Pagination, reversed: Boolean = false): PaginationResult<Value>
Content copied to clipboard
get All
Link copied to clipboard
keys
Link copied to clipboard
abstract suspend fun keys(pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>
Content copied to clipboard
abstract suspend fun keys(v: Value, pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>
Content copied to clipboard
Properties
onDataCleared
Link copied to clipboard
onNewValue
Link copied to clipboard
onValueRemoved
Link copied to clipboard
Inheritors
KeyValuesCacheRepo
Link copied to clipboard
MapOneToManyKeyValueRepo
Link copied to clipboard
MapperOneToManyKeyValueRepo
Link copied to clipboard
OneToManyAndroidRepo
Link copied to clipboard
KtorOneToManyKeyValueRepo
Link copied to clipboard
ExposedOneToManyKeyValueRepo
Link copied to clipboard
Extensions
with Mapper
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> OneToManyKeyValueRepo<ToKey, ToValue>.withMapper(mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>): OneToManyKeyValueRepo<FromKey, FromValue>
Content copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> OneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): OneToManyKeyValueRepo<FromKey, FromValue>
Content copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> OneToManyKeyValueRepo<ToKey, ToValue>.withMapper(mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>): OneToManyKeyValueRepo<FromKey, FromValue>
Content copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> OneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): OneToManyKeyValueRepo<FromKey, FromValue>
Content copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> OneToManyKeyValueRepo<ToKey, ToValue>.withMapper(mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>): OneToManyKeyValueRepo<FromKey, FromValue>
Content copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> OneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): OneToManyKeyValueRepo<FromKey, FromValue>
Content copied to clipboard